<body>
from HTML
<body> は HTML 文書のコンテンツを示す要素
<body> は文書中に一つのみ配置可能
例
code:html
<html lang="en">
<head>
<title>Document title</title>
</head>
<body>
<p>
The <code>&lt;body&gt;</code> HTML element represents the content of an
HTML document. There can be only one <code>&lt;body&gt;</code> element in
a document.
</p>
</body>
</html>